home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / networke / xfirepow.000 / xfirepow / xfirepower-0.84 / server / global.h < prev    next >
C/C++ Source or Header  |  1995-11-22  |  566b  |  34 lines

  1. #ifndef data_h
  2. #define data_h
  3.  
  4. #include "struct.h"
  5. #include "defs.h"
  6.  
  7. extern int GLO_debug;
  8.  
  9. extern char GLO_map[MAXMAPSIZE][MAXMAPSIZE];
  10. extern char GLO_mapdamage[MAXMAPSIZE][MAXMAPSIZE];
  11. extern mapinfo GLO_map_info;
  12.  
  13. extern player GLO_players[];
  14.  
  15. extern double *GLO_Cos, GLO_Sin[];
  16.  
  17. extern int GLO_counter;
  18.  
  19. extern shell GLO_shells[];
  20.  
  21. extern base GLO_bases[];
  22. extern flag GLO_flags[];
  23. extern int GLO_num_flags[];
  24.  
  25. extern char *GLO_mapname, *GLO_maplist;
  26.  
  27. extern int GLO_maxflag;
  28.  
  29. extern int GLO_motdLines;
  30. extern char **GLO_motd;
  31.  
  32. extern mine GLO_mines[];
  33. #endif
  34.